home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / src / demos / GL / libgobj / Makefile < prev    next >
Makefile  |  1994-08-01  |  302b  |  17 lines

  1. #!smake
  2. # This makefile creates libgobj which is used to build demos 
  3. #
  4. include ${ROOT}/usr/include/make/commondefs
  5.  
  6. TARGETS = libgobj.a
  7. CFILES    = read.c write.c draw.c modify.c light.c
  8. HFILES    = gobj.h
  9.  
  10. default all: ${TARGETS}
  11.  
  12. include ${COMMONRULES}
  13.  
  14. ${TARGETS}: ${OBJECTS}
  15.     ${AR} crs $@ ${OBJECTS}
  16.